var N = 10000
var x1 = new Float32Array(N);
var x2 = new Float32Array(N);
var x3 = new Float32Array(N);
var AoS1 = [];
var AoS2 = [];
var AoS3 = [];
for (var i = 0; i < N; ++i) {
x1[i] = Math.random();
x2[i] = Math.random();
x3[i] = Math.random();
AoS1.push( {x:Math.random(), y:Math.random(), z:Math.random()} );
AoS2.push( {x:Math.random(), y:Math.random(), z:Math.random()} );
AoS3.push( {x:Math.random(), y:Math.random(), z:Math.random()} );
}
for (var i = 0; i < N; ++i) {
x3[i] = x1[i] + x2[i];
}
for (var i = 0; i < N; ++i) {
AoS3[i].x = AoS1[i].x + AoS2[i].x;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
SoA | |
AoS |
Test name | Executions per second |
---|---|
SoA | 635.7 Ops/sec |
AoS | 620.5 Ops/sec |
Let's break down what is being tested in this benchmark.
Benchmark Definition
The benchmark tests two approaches to performing element-wise addition on a list of vectors:
x1
, x2
) and performs the addition operation directly on these arrays.AoS1
, AoS2
, AoS3
) where each object represents a vector, and performs the addition operation by accessing corresponding elements in the objects.Options Compared
The two options being compared are:
x
, y
, and z
properties.Pros and Cons
Pros:
Cons:
Pros:
Cons:
x
, y
, and z
properties).Library Used
There is no explicit library mentioned in the benchmark definition, but it's likely that the JavaScript engine being used (e.g., V8) implements various optimizations and features that affect the performance of these approaches. However, for this specific benchmark, the focus is on comparing the two approaches themselves.
Special JS Features or Syntax
There are no special JavaScript features or syntax mentioned in the benchmark definition.
Other Alternatives
Alternative approaches to performing element-wise addition could include:
However, these alternatives are not part of the benchmark definition and would require additional modifications to the test setup.